﻿
.player-container {
    width: 100%;
    height: 50px;
    background: white;
    border-radius: 5px;
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.progress-section {
    flex: 1;
    min-width: 0;
    margin-left: 0px;
    margin-right: 18px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #79a7ff;
    border-radius: 3px;
    margin-bottom: 2px;
    position: relative;
    flex-grow: 1;
    margin-left: 10px;
    margin-right: 100%;
    cursor: pointer;
}

.control-btn {
    border: none;
    color: #c5c5c5;
    padding: 15x 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    cursor: pointer;
    background: transparent;
    

}
    
.control-btn:hover {
    color: white;
}

.subtext {
    
}

/* The container (the grey/white background track) */
.player-container {
    width: 100%;
    height: 50px;
    background: none;
    outline: #303030 solid 0px;
    border-radius: 5px;
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

/* The actual progress (the red line) */
.progress-fill {
    height: 100%;
    width: 0%; /* Starts at 0 */
    background: #387dff; /* Your orange/red line color */
    transition: width 0.1s linear; /* Makes movement smooth */
}